Skip to content

Instantly share code, notes, and snippets.

@mike-petrov-lab95g2
mike-petrov-lab95g2 / Resonance-A-Plague-Tale-Legacy-Trainer.md
Created September 4, 2026 07:23
Resonance: A Plague Tale Legacy Trainer PC utility featuring Unlock All Chapters, Unlock Everything, Change Resonance Points, Resonance Points Editor, Game Speed, Configurable Hotkeys, reusable profiles, quick actions, and Windows configuration manag

Resonance-A-Plague-Tale-Legacy-Trainer

Resonance: A Plague Tale Legacy Trainer 2026 for Windows with God Mode, Unlock All Codex Entries, Unlock All Chapters, Unlock Everything, Change Resonance Points, Resonance Points Editor, profiles, hotkeys, configs, and a clean desktop workflow.

Download

Official Game Artwork

Resonance: A Plague Tale Legacy Trainer

@sergey-l05k2
sergey-l05k2 / A-Plague-Tale-Resonance-Trainer.md
Created September 4, 2026 07:22
Resonance: A Plague Tale Legacy Trainer PC utility featuring Unlock All Chapters, Unlock Everything, Change Resonance Points, Resonance Points Editor, Game Speed, Configurable Hotkeys, reusable profiles, quick actions, and Windows configuration manag

A-Plague-Tale-Resonance-Trainer

Resonance: A Plague Tale Legacy Trainer toolkit for Windows with Resonance Points Editor, Game Speed, Configurable Hotkeys, Saved Profiles, Trainer Dashboard, Quick Presets, modern dashboard, saved presets, and desktop-focused setup.

Download

Official Game Artwork

Resonance: A Plague Tale Legacy Trainer

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@tonycoco
tonycoco / bookmarket.js
Last active September 4, 2026 23:46
Safari Bookmarklet for <video> AirPlay options – Copy the `bookmarket.js` snippet and paste it as the address of a bookmark in Safari. Then, while playing any <video> you can click the bookmarklet and the <video> will bring up your AirPlay options.
javascript:if(window.WebKitPlaybackTargetAvailabilityEvent){var videos=document.getElementsByTagName("video");if(videos.length>0)for(var airplayable=videos[0],i=0;i<videos.length;i++)if(!(airplayable=videos[i]).paused){airplayable.webkitShowPlaybackTargetPicker();break}}
@lemmensaxel
lemmensaxel / Auth.tsx
Last active September 4, 2026 23:43
React-native expo + keycloak PKCE flow implemented using expo AuthSession
import {
ActivityIndicator,
Button,
ScrollView,
Text,
View,
} from "react-native";
import * as AuthSession from "expo-auth-session";
import * as WebBrowser from "expo-web-browser";
import { useEffect, useState } from "react";
@Blener
Blener / upgrade_debian_12_to_13.sh
Created August 27, 2026 15:51
Update LXC Debian 12 to 13 checking if the container can be upgraded
#!/bin/bash
set -euo pipefail
#based on https://gist.github.com/aerodomigue/0320ec3dffbc60caeaee8a6fc83cb470, thank you aerodomigue
# --- Safety check: only run on Debian 12 (bookworm) ---
if [ ! -r /etc/os-release ]; then
echo "ERROR: /etc/os-release not found, cannot verify OS. Aborting." >&2
exit 1
fi
@mjkstra
mjkstra / arch_linux_installation_guide.md
Last active September 4, 2026 23:35
A modern, updated installation guide for Arch Linux with BTRFS on an UEFI system
@CrazyGrape
CrazyGrape / DualSense Skin.css
Last active September 4, 2026 23:34
DualSense (PS5) Skin for GamepadViewer.com
/* -- PS5 Skin for GamepadViewer | Created by CrazyGrape --
HOW TO USE IN OBS:
1. Go to GamepadViewer.com and generate a URL (make sure to USE THE XBOX SKIN or leave the skin blank)
2. Generate your URL once the settings are correct and copy it to your clipboard
3. In OBS, create a new browser source
4. In the URL Screen, paste the link copied from GamepadViewer.com
5. Set the width to 807 and the height to 651
6. Paste the contents of this CSS file into the Custom CSS field
7. Click Done.
8. Enjoy the skin! */
@aerodomigue
aerodomigue / upgrade_debian_12_to_13.sh
Created August 17, 2025 11:15
Upgrade LXC Debian 12 to 13 (copy/paste solution)
#!/bin/bash
# Update source from bookworm to trixie
sed -i 's/bookworm/trixie/g' /etc/apt/sources.list
apt-get update
# Upgrade to trixie
DEBIAN_FRONTEND=noninteractive apt-get -o Dpkg::Options::="--force-confold" dist-upgrade -y
# Disable services that break in LXC / containers (harmless if not present)
systemctl disable --now systemd-networkd-wait-online.service || true